home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day09 / spabout.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  1011 b   |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef SPAboutH
  3. #define SPAboutH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Buttons.hpp>
  10. #include <vcl\ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TAboutBox : public TForm
  13. {
  14. __published:    // IDE-managed Components 
  15.     TGroupBox *GroupBox1;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18.     TLabel *Label3;
  19.     TLabel *Label4;
  20.     TBitBtn *BitBtn1;
  21.     TImage *Image1;
  22.     
  23. private:        // User declarations
  24. public:         // User declarations
  25.     virtual __fastcall TAboutBox(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TAboutBox *AboutBox;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.